home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / ccr.zip / MAKEFILE < prev    next >
Text File  |  1993-01-13  |  583b  |  28 lines

  1. #
  2. # Makefile for Colossal Cave Revisited
  3. #
  4. TR=    tr
  5. TC=    tc
  6. TDB=    tdb
  7. TRX=    maketrx
  8.  
  9. PROGNAME=    ccr
  10.  
  11. DEBUG=        -ds
  12. SWAPTIONS=    -tf $(TMP)$(PROGNAME).swp 
  13. OPTIONS=    -s $(SWAPTIONS) $(DEBUG) -mp16000
  14.  
  15. .PRECIOUS=    $(PROGNAME).gam        # do not delete game file on errors
  16.  
  17. HEADERS=    adv.t ccr-std.t
  18. ROOMS=        ccr-room.t
  19. OBJECTS=    ccr-item.t
  20. MISC=        close.t ccr-verb.t format.t help.t npc.t preparse.t thingext.t
  21.  
  22. $(PROGNAME).exe: $(PROGNAME).gam
  23.     $(TRX) $(TR) $(PROGNAME).gam $(PROGNAME).exe
  24.  
  25. $(PROGNAME).gam: makefile $(PROGNAME).t $(HEADERS) $(ROOMS) $(OBJECTS) $(MISC)
  26.      $(TC) $(OPTIONS) $(PROGNAME).t
  27.  
  28.